home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_52 / chords.mh < prev    next >
Text File  |  1995-01-01  |  965b  |  70 lines

  1. #
  2. # chords.mh
  3. # CONSTANT definitions for chords. (see chords.ma for array data)>
  4. #
  5. #
  6.  
  7. # major chords
  8. Major          = 0
  9. Major6         = 1
  10. Major7         = 2
  11. Major79        = 3
  12. Major9        = 4
  13. Major69        = 5
  14. Major7b5    = 6
  15. Major69b5    = 7
  16. Major9b5    = 8
  17. Major911    = 9
  18. Major7911    = 10
  19.  
  20. # minor chords
  21. Minor         = 11
  22. Minor6        = 12 
  23. Minor7        = 13 
  24. Minor79        = 14
  25. Minor11        = 15
  26. MinorMaj7    = 16
  27. Minor7b5    = 17
  28. Minor711    = 18
  29.  
  30. # dominant chords, augmented on 7,9,11,13
  31. Dom7           = 19
  32. Dom7b5         = 20
  33. Dom79          = 21
  34. Dom711        = 22                # suspended
  35. Dom7913        = 23
  36. Dom713        = 24
  37. Dom7b59        = 25
  38. Dom7b9#11    = 26
  39. Dom7#5        = 27
  40. Dom7#9        = 28
  41. Dom7b9        = 29
  42. Dom7#5b9    = 30
  43.  
  44. # misc
  45.  
  46. Augmented    = 31
  47. Dim7        = 32
  48. Fifths2        = 33
  49. Fifths3        = 34
  50. Fifths4        = 35
  51. Fifths5        = 36
  52. Fifths6        = 37
  53. Fourths2    = 38
  54. Fourths3    = 39
  55. Fourths4    = 40
  56. Fourths5    = 41
  57. Fourths6    = 42
  58. Octaves2    = 43
  59. Octaves3    = 44
  60. Octaves4    = 45
  61. Octaves5    = 46
  62. Octaves6    = 47
  63. Minor47        = 48
  64.  
  65.  
  66. NOCHORDS = Octaves6+2
  67. MAXCHORD = 7
  68.  
  69.